home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Aztec C v5.2a disk 4.adf / 204inc_h.lzh / graphics / gfxnodes.h < prev    next >
C/C++ Source or Header  |  1991-03-14  |  722b  |  39 lines

  1. #ifndef    GRAPHICS_GFXNODES_H
  2. #define    GRAPHICS_GFXNODES_H
  3. /*
  4. **    $Filename: graphics/gfxnodes.h $
  5. **    $Release: 2.04 $
  6. **    $Revision: 37.0 $
  7. **    $Date: 91/01/07 $
  8. **
  9. **    graphics extended node definintions
  10. **
  11. **    (C) Copyright 1985,1986,1987,1988,1989 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef EXEC_NODES_H
  16. #include <exec/nodes.h>
  17. #endif
  18.  
  19. struct    ExtendedNode    {
  20. struct    Node    *xln_Succ;
  21. struct    Node    *xln_Pred;
  22. UBYTE    xln_Type;
  23. BYTE    xln_Pri;
  24. char    *xln_Name;
  25. UBYTE    xln_Subsystem;
  26. UBYTE    xln_Subtype;
  27. LONG    xln_Library;
  28. LONG    (*xln_Init)();
  29. };
  30.  
  31. #define SS_GRAPHICS    0x02
  32.  
  33. #define    VIEW_EXTRA_TYPE        1
  34. #define    VIEWPORT_EXTRA_TYPE    2
  35. #define    SPECIAL_MONITOR_TYPE    3
  36. #define    MONITOR_SPEC_TYPE    4
  37.  
  38. #endif    /* GRAPHICS_GFXNODES_H */
  39.